home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Code / winany.cls < prev    next >
Text File  |  1997-06-14  |  502b  |  17 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "GWinFindAny"
  6. Attribute VB_GlobalNameSpace = True
  7. Attribute VB_Creatable = True
  8. Attribute VB_PredeclaredId = False
  9. Attribute VB_Exposed = True
  10. Option Explicit
  11.  
  12. Function FindAnyWindow(Optional Title As String, _
  13.                        Optional Class As String, _
  14.                        Optional CaseSense As Boolean = True) As Long
  15.     FindAnyWindow = MWinFindAny.FindAnyWindow(Title, Class, CaseSense)
  16. End Function
  17.